summaryrefslogtreecommitdiff
path: root/app/[lng]/sales/(sales)/system/roles/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/sales/(sales)/system/roles/page.tsx')
-rw-r--r--app/[lng]/sales/(sales)/system/roles/page.tsx68
1 files changed, 0 insertions, 68 deletions
diff --git a/app/[lng]/sales/(sales)/system/roles/page.tsx b/app/[lng]/sales/(sales)/system/roles/page.tsx
deleted file mode 100644
index fe074600..00000000
--- a/app/[lng]/sales/(sales)/system/roles/page.tsx
+++ /dev/null
@@ -1,68 +0,0 @@
-import * as React from "react"
-import { type SearchParams } from "@/types/table"
-
-import { getValidFilters } from "@/lib/data-table"
-import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
-import { Separator } from "@/components/ui/separator"
-
-import { searchParamsCache } from "@/lib/roles/validations"
-import { searchParamsCache as searchParamsCache2 } from "@/lib/admin-users/validations"
-import { RolesTable } from "@/lib/roles/table/roles-table"
-import { getRolesWithCount } from "@/lib/roles/services"
-import { getUsersAll } from "@/lib/users/service"
-
-interface IndexPageProps {
- searchParams: Promise<SearchParams>
-}
-
-export default async function UserTable(props: IndexPageProps) {
- const searchParams = await props.searchParams
- const search = searchParamsCache.parse(searchParams)
- const search2 = searchParamsCache2.parse(searchParams)
-
- const validFilters = getValidFilters(search.filters)
-
- const promises = Promise.all([
- getRolesWithCount({
- ...search,
- filters: validFilters,
- }),
-
-
- ])
-
-
- const promises2 = Promise.all([
- getUsersAll({
- ...search2,
- filters: validFilters,
- }, "evcp"),
- ])
-
-
- return (
- <React.Suspense
- fallback={
- <DataTableSkeleton
- columnCount={6}
- searchableColumnCount={1}
- filterableColumnCount={2}
- cellWidths={["10rem", "40rem", "12rem", "12rem", "8rem", "8rem"]}
- shrinkZero
- />
- }
- >
- <div className="space-y-6">
- <div>
- <h3 className="text-lg font-medium">Role Management</h3>
- <p className="text-sm text-muted-foreground">
- 역할을 생성하고 역할에 유저를 할당할 수 있는 페이지입니다. 역할에 메뉴의 접근 권한 역시 할당할 수 있습니다.
- </p>
- </div>
- <Separator />
- <RolesTable promises={promises} promises2={promises2} />
- </div>
- </React.Suspense>
-
- )
-}